1/**************************************************************************************
2This file is distributed under the GNU General Public License version 2 (a.k.a. GPL-v2)
3(c) 2019-2021 Virgil Mager - vvmager@gmail.com
4(c) 2019-2021 Information Technology Group - http://itgroup.ro
5**************************************************************************************/
6
7style "panel" {
8
9#	bg_pixmap[NORMAL] = "assets/panel.png"
10	bg[NORMAL]   = "#000000"
11   fg[NORMAL]   = "#bbbbbb"
12   text[NORMAL] = "#bbbbbb"
13
14#	bg[ACTIVE]   = shade(0.85, @selected_bg_color)
15#	bg[SELECTED] = "#ff0000"
16	fg[ACTIVE]   = "#ffffff"
17	text[ACTIVE] = "#ffffff"
18
19	bg[PRELIGHT]   = shade(1.0, @selected_bg_color)
20	fg[PRELIGHT]   = @selected_focused_fg_color
21	text[PRELIGHT] = @selected_focused_fg_color
22
23	xthickness = 1
24	ythickness = 2
25	engine "murrine" {
26      roundness = 2
27		contrast = 1.0
28		textstyle = 0
29		lightborderstyle = 0
30		lightborder_shade = 1.05
31	}
32}
33
34style "panel_button" {
35	GtkButton::inner-border           = {1, 1, 0, 0}
36
37	bg[NORMAL]   = "#000000"
38   fg[NORMAL]   = "#bbbbbb"
39   text[NORMAL] = "#bbbbbb"
40
41	bg[ACTIVE]   = shade(0.8, @selected_bg_color)
42   fg[ACTIVE]   = @selected_focused_fg_color
43   text[ACTIVE] = @selected_focused_fg_color
44
45	bg[PRELIGHT]   = shade(1.0, @selected_bg_color)
46   fg[PRELIGHT]   = @selected_focused_fg_color
47   text[PRELIGHT] = @selected_focused_fg_color
48
49	xthickness = 5
50	ythickness = 1
51	engine "murrine" {
52		roundness = 2
53		contrast = 0.5
54		lightborderstyle = 0
55		lightborder_shade = 1.4
56		border_shades = {0.7, 0.7}
57#		trough_shades = {0.1, 0.1}
58		gradient_shades = {1.1, 1.0, 1.0, 0.95}
59		reliefstyle = 0
60#		glowstyle = 1
61#		glow_shade = 0.7
62	}
63}
64